#please edit this to include the path to your kernel
KERNEL_SRC := /home/foo/bar/Hammer/linux-2.6.22

obj-m += ledblink.o

all:
	make -C $(KERNEL_SRC) M=$(PWD) modules

clean:
	make -C $(KERNEL_SRC) M=$(PWD) clean
